$(document).ready(function () { if(ShouldShowOneCcButton()) { $('.show_all_cc_at_once').show(); $('.one_cc_at_a_time').remove(); if (isHeb()) { $('#useAllCC').attr('src','/Content/Images/paymenticons/CC_he_button.png'); } else { $('#useAllCC').attr('src','/Content/Images/paymenticons/CC_en_button.png'); } } }) function ShouldShowOneCcButton() { if(ignoreMeshulamIframe) return true; return availableBrands.filter((brand) => brand.Processor === 10).length === 0; // 10 - Meshulam }